摘要:
C getchar() #include <stdio.h> int main() { int size = 5; char str[size]; int now = 0; char ch; printf("Enter whatever you want: "); while ((ch = getc 阅读全文
摘要:
import java.util.Scanner; public class Factorial { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n; while (true) { 阅读全文