fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8. class Ideone
  9. {
  10. public static void main (String[] args) throws java.lang.Exception
  11. {
  12. // your code goes here
  13. }
  14. }
Success #stdin #stdout 0.08s 54632KB
stdin
 #include <stdio.h>

 int main()
{
    //unsigned char i=0;
    unsigned int x=0; unsigned int Y=0; //====20250417

    printf("0请输入一个整数:\ n");        //提示
    scanf("% d",& X);                   //你输入一个整数
    prinft("你输入的是X=% d&\n", X);     //显示输出

    printf("请输入两个整数:\ n");        //提示
    scanf(%d,%d,8X,8Y);               //你需要输入两个整数,逗号分隔
    printf("你输入的是 X=%d, Y=% d\n",X, Y);  //显示输出
  reture 0;
 }
    
stdout
Standard output is empty