首页 > 解决方案 > 在 C 编程中,如何在 while 循环中清除屏幕?

问题描述

#include <studio.h>

int main()
{
   int num;
  
    while(1)
        printf("Enter the number");

    scanf("%d",num);

    printf("Your number is %d", num);
    return 0;
}

标签: cwhile-loop

解决方案


推荐阅读