1 条题解

  • 0
    @ 2021-6-15 13:05:37

    C :

    #include <stdio.h>
    
    
    
    int main()
    
    {
    
             printf("spell(n-1)*0.99\n");
    
    }
    

    C++ :

    #include <iostream>
    using namespace std;
    int main()
    {
     cout<<"spell(n-1)*0.99";
     return 0;
    } 
    

    Pascal :

    var x:integer;
    s,c:real;
    begin
    readln(x);
    c:=x div 15;
    begin
    s:=15-c;
    writeln('spell(n-1)*0.99');
    end;
    end.
    

    Java :

    
    public class Main
    {
    	public static void main(String[] args)
    	{
    		System.out.print("spell(n-1)*0.99");
    	}
    }
    
    • 1

    信息

    ID
    846
    时间
    1000ms
    内存
    128MiB
    难度
    (无)
    标签
    递交数
    0
    已通过
    0
    上传者