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.07s 54648KB
stdin
bai 1 #include <stdio.h>

int main() {
    int num;
    
    // Nhập vào một số nguyên
    printf("Nhập vào một số nguyên: ");
    scanf("%d", &num);
    
    // Kiểm tra và in ra kết quả
    if (num % 2 == 0) {
        printf("Số %d là số chẵn.\n", num);
    } else {
        printf("Số %d là số lẻ.\n", num);
    }
    
    return 0;
}


bai 2

# Nhập vào một số nguyên dương n (n > 0)
n = int(input("Nhập n = "))

# Tính tổng các số từ 1 đến n
tong = 0
for i in range(1, n + 1):
    tong += i

# In ra kết quả
print(f"Kết quả: {tong}")

Nhập n = 5
Kết quả: 15
stdout
Standard output is empty