Skip to content

Instantly share code, notes, and snippets.

View charlieliu0189-coder's full-sized avatar

charlieliu0189-coder

  • Joined Sep 25, 2025
View GitHub Profile
@charlieliu0189-coder
charlieliu0189-coder / square.cpp
Created October 3, 2025 14:38
20251002作業-2
#include<iostream>
using namespace std;
int main( ){
int num;
cout << "Enter the length of the sides of the square: ";
cin >>num;
if (num == 1) {
cout <<"*";
@charlieliu0189-coder
charlieliu0189-coder / score.cpp
Created October 2, 2025 12:23
20251002作業
#include<iostream>
using namespace std;
int main(){
int score = 60;
cout<<"enter your grade: ";
cin>>score;
/*80 GOOD
60 PASS